summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/(system)/approval/template/[id]/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(system)/approval/template/[id]/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/(system)/approval/template/[id]/page.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/(system)/approval/template/[id]/page.tsx b/app/[lng]/evcp/(evcp)/(system)/approval/template/[id]/page.tsx
index 4ce13b42..3ea0fb09 100644
--- a/app/[lng]/evcp/(evcp)/(system)/approval/template/[id]/page.tsx
+++ b/app/[lng]/evcp/(evcp)/(system)/approval/template/[id]/page.tsx
@@ -5,7 +5,6 @@ import { notFound } from "next/navigation"
import { getApprovalTemplate } from "@/lib/approval-template/service"
import { getApprovalLineOptions } from "@/lib/approval-line/service"
import { ApprovalTemplateEditor } from "@/lib/approval-template/editor/approval-template-editor"
-import { variables as configVariables } from "./config"
interface ApprovalTemplateDetailPageProps {
params: Promise<{
@@ -46,7 +45,6 @@ export default async function ApprovalTemplateDetailPage({ params }: ApprovalTem
<ApprovalTemplateEditor
templateId={id}
initialTemplate={template}
- staticVariables={configVariables as unknown as Array<{ variableName: string }>}
approvalLineOptions={approvalLineOptions}
/>
)}